home *** CD-ROM | disk | FTP | other *** search
/ VisualFX for ImageFX / VisualFX for Image FX 2.adf / Files / SetUp / 02 / 20.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  1997-01-23  |  752 b   |  31 lines

  1. /*
  2.                                  Visual FX
  3.                                     For
  4.                                  Image FX
  5.                                SetUp Script
  6.                            Written By J.L. White
  7.  
  8.                          (C)1997 Merlin's Software
  9.  
  10. */
  11. parse arg Num
  12. options results
  13. address "IMAGEFX.1"
  14.  
  15.     RequestFile '"Select File To Use For Divider!" "VFXIFX:Images/Objects" ""'
  16.     BrushName = result
  17.  
  18.  
  19.     Gadget.1 = 'Select Direction To Move Divider!'
  20.     Gadget.2 = 'Left To Right'
  21.     Gadget.3 = 'Right To Left'
  22.     ListRequest 3 Gadget
  23.     Type = 0
  24.     if result = 2 then Type = 0
  25.     if result = 3 then Type = 1
  26.  
  27. call open TempFile,"VFXIFX:TempDrawer/"strip(Num),W
  28. call writeln TempFile,Type
  29. call writeln TempFile,BrushName
  30. call close TempFile
  31.